home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Yahoo Messenger 5.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  35 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="About Bitmap"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="About Bitmap"
  9. "DATA 1"="Bitmap Files (*.bmp)|*.bmp|All Files (*.*)|*.*"
  10. "DESCRIPTION 1"="You can change the logo Yahoo! Messenger displays an its About window here."
  11. "DESCRIPTION 2"="The logo must be a Windows bitmap, and should be 255 by 29 pixels in size."
  12. "DESCRIPTION 3"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  13. "DESCRIPTION 4"="NOTE #2: This does not work with the new Yahoo! Messenger version 4.x"
  14. "DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  15. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  16. "CONTACTURL"="http://www.xteq.com/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  19.  
  20. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  21.  
  22. Sub Plugin_Initialize
  23.  s=RegReadValue(sP)
  24.  t=IniReadValue(s & "\cobrand.ini","BITMAPS","About Bitmap")
  25.  Call SetUIElement(1,t)
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  t=GetUIElement(1)
  30.  s=RegReadValue(sP)
  31.  Call IniWriteValue(s & "\cobrand.ini","BITMAPS","About Bitmap",t)
  32. End Sub
  33.  
  34. Sub Plugin_Terminate 
  35. End Sub